home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 437 b | 24 lines | [TEXT/CWIE] |
- // FaceMaintainer.cp
-
- #ifndef FaceMaintainer_h
- #include "FaceMaintainer.h"
- #endif
-
- FaceMaintainer::FaceMaintainer()
- : port( GrafPortObject::Current() ),
- old( GrafPortObject::Current().Face() )
- {
- }
-
- FaceMaintainer::FaceMaintainer( const Face& toUse )
- : port( GrafPortObject::Current() ),
- old( GrafPortObject::Current().Face() )
- {
- port.SetFace( toUse );
- }
-
- void FaceMaintainer::Reset() const
- {
- port.SetFace( old );
- }
-